home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue32 / extlistv / EXTLISTV.ZIP / ELV_Reg.pas next >
Encoding:
Pascal/Delphi Source File  |  1997-08-27  |  601 b   |  30 lines

  1. unit ELV_Reg;
  2.  
  3. interface
  4.  
  5. procedure Register;
  6.  
  7. implementation
  8.  
  9. uses
  10.   Classes, DsgnIntf, EnhListView,
  11. {$IFDEF VER90}
  12.   ExtColEd,
  13. {$ENDIF}
  14.   ExtListView;
  15.  
  16. procedure Register;
  17. begin
  18.   RegisterComponents('My Controls', [TEnhListView]);
  19.   RegisterPropertyEditor(TypeInfo(TEnhLVSaveSettings), NIL, '', TClassProperty);
  20.   RegisterComponents('My Controls', [TExtListView]);
  21.   RegisterPropertyEditor(TypeInfo(TExtLVSaveSettings), NIL, '', TClassProperty);
  22. {$IFDEF VER90}
  23.   RegisterPropertyEditor(TypeInfo(TExtListColumns), NIL, '', TExtListColumnsProperty);
  24. {$ENDIF}
  25. end;
  26.  
  27.  
  28.  
  29. end.
  30.